using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
using System;
using Object = UnityEngine.Object;

namespace MagicaCloth
{
    public class MagicaMeshClothInspector : ClothEditor
    {
        protected override void OnEnable()
        {
            throw new NotImplementedException();
        }

        public override void OnInspectorGUI()
        {
            throw new NotImplementedException();
        }

        protected override bool CheckCreate()
        {
            throw new NotImplementedException();
        }

        void MainInspector()
        {
            throw new NotImplementedException();
        }

        protected override void OnResetSelector(List<int> selectorData)
        {
            throw new NotImplementedException();
        }

        protected override void OnFinishSelector(List<int> selectorData)
        {
            throw new NotImplementedException();
        }
    }
}